HOME |  BACK |  NEXT |  _  WORDLIST |  TOPICS |  _  AUTHORS |  E-MAIL |  _  INDEX | -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

WWWE LogoTopic:

Fill-In Forms

One of HTML's most innovative and advanced features is its ability to solicit information from a user, process that information, and ship it to a Web server. In turn, the server processes that information and returns a new document.

The Web gains this ability through the Common Gateway Interface (CGI). CGI is a set of communication standards that Web servers and browsers use to transfer information. A Fill-In Form (or just Form) is the HTML document viewed in a browser that requests information from the user. On the server side is a program, usually called a script, that can process the retrieved data and create a new HTML document to send back to the browser. The complicated programming required for creating a working Form page with CGI scripts is beyond the scope of this book.

However, there are numerous on-line resources and other printed materials about writing scripts or outright code, working with Web servers, and designing advanced Form pages that we list in the URLs section below.

In this document, we show you what form tags look like and how to write an HTML document that contains form fields. We also point you to some easy to alter pre-written scripts that you can incorporate into your own Web documents.

Form Tags

There are five HTML tags that are exclusively associated with forms. They are:

Simple Form Coding

Here is a simple FORM code block:

<FORM METHOD="POST" ACTION="/cgi/filename">
Name: <INPUT NAME="name" TYPE="TEXT" SIZE="20" MAXLENGTH="40"><P>
Gender: M <INPUT NAME="gender" TYPE="RADIO" VALUE="male">
F <INPUT NAME="gender" TYPE="RADIO" VALUE="female"><P>
Comment: <BR> <TEXTAREA NAME="comments" ROWS="10" COLS="65"></TEXTAREA><P>
</FORM><P>

This is the result when this code block is used in a document:

Name:

Gender: M F

Comment:

Creating the document side of a Fill-In Form is a simple task. On the other hand, writing the processing program to handle the input and response to the data can be a difficult task. Please look through the materials listed in the URLs section below for an in-depth look at Form and CGI coding.

Pre-Written Form Utilities

There some pre-written scripts and programs designed to allow non-programmers to add the power of forms and CGI to their Web documents. Each utility has full instructions for setup, coding and operation.

The WWW Mail Gateway Info
An easy to use mail utility writen in Perl.
Shareware CGIs
A collection of easy to install CGI scripts for guestbooks, add links, odometers, etc.
CGI Programs on the Web
An extensive list of CGI scripts which you can add to your own Web pages.

URLs:

CGI programming lessons
A good introduction to Web CGI programming with examples
Yahoo's List of CGI information
The Common Gateway Interface
NCSA's excelent CGI introductory tutorial
Common Gateway Interface
CGI introduction and examples
The Foundations of WWW Programming with HTML and CGI
The Website for the book about programming CGIs, co-authored by Ed Tittel, Mark Gaither, Sebastian Hassinger, and Mike Erwin.

W3E References:

CGI
HTML Tags

Print References:

-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

E-Mail: The World Wide Web Encyclopedia at wwwe@tab.com
E-Mail: Charles River Media at chrivmedia@aol.com
Copyright 1996 Charles River Media. All rights reserved.
Text - Copyright © 1995, 1996 - James Michael Stewart & Ed Tittel.
Web Layout - Copyright © 1995, 1996 - LANWrights & IMPACT Online.
Revised -- February 20th, 1996